home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / telnetlib.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  20KB  |  747 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''TELNET client class.
  5.  
  6. Based on RFC 854: TELNET Protocol Specification, by J. Postel and
  7. J. Reynolds
  8.  
  9. Example:
  10.  
  11. >>> from telnetlib import Telnet
  12. >>> tn = Telnet(\'www.python.org\', 79)   # connect to finger port
  13. >>> tn.write(\'guido\\r\\n\')
  14. >>> print tn.read_all()
  15. Login       Name               TTY         Idle    When    Where
  16. guido    Guido van Rossum      pts/2        <Dec  2 11:10> snag.cnri.reston..
  17.  
  18. >>>
  19.  
  20. Note that read_all() won\'t read until eof -- it just reads some data
  21. -- but it guarantees to read at least one byte unless EOF is hit.
  22.  
  23. It is possible to pass a Telnet object to select.select() in order to
  24. wait until more data is available.  Note that in this case,
  25. read_eager() may return \'\' even if there was data on the socket,
  26. because the protocol negotiation may have eaten the data.  This is why
  27. EOFError is needed in some cases to distinguish between "no data" and
  28. "connection closed" (since the socket also appears ready for reading
  29. when it is closed).
  30.  
  31. To do:
  32. - option negotiation
  33. - timeout should be intrinsic to the connection object instead of an
  34.   option on one of the read calls only
  35.  
  36. '''
  37. import sys
  38. import socket
  39. import select
  40. __all__ = [
  41.     'Telnet']
  42. DEBUGLEVEL = 0
  43. TELNET_PORT = 23
  44. IAC = chr(255)
  45. DONT = chr(254)
  46. DO = chr(253)
  47. WONT = chr(252)
  48. WILL = chr(251)
  49. theNULL = chr(0)
  50. SE = chr(240)
  51. NOP = chr(241)
  52. DM = chr(242)
  53. BRK = chr(243)
  54. IP = chr(244)
  55. AO = chr(245)
  56. AYT = chr(246)
  57. EC = chr(247)
  58. EL = chr(248)
  59. GA = chr(249)
  60. SB = chr(250)
  61. BINARY = chr(0)
  62. ECHO = chr(1)
  63. RCP = chr(2)
  64. SGA = chr(3)
  65. NAMS = chr(4)
  66. STATUS = chr(5)
  67. TM = chr(6)
  68. RCTE = chr(7)
  69. NAOL = chr(8)
  70. NAOP = chr(9)
  71. NAOCRD = chr(10)
  72. NAOHTS = chr(11)
  73. NAOHTD = chr(12)
  74. NAOFFD = chr(13)
  75. NAOVTS = chr(14)
  76. NAOVTD = chr(15)
  77. NAOLFD = chr(16)
  78. XASCII = chr(17)
  79. LOGOUT = chr(18)
  80. BM = chr(19)
  81. DET = chr(20)
  82. SUPDUP = chr(21)
  83. SUPDUPOUTPUT = chr(22)
  84. SNDLOC = chr(23)
  85. TTYPE = chr(24)
  86. EOR = chr(25)
  87. TUID = chr(26)
  88. OUTMRK = chr(27)
  89. TTYLOC = chr(28)
  90. VT3270REGIME = chr(29)
  91. X3PAD = chr(30)
  92. NAWS = chr(31)
  93. TSPEED = chr(32)
  94. LFLOW = chr(33)
  95. LINEMODE = chr(34)
  96. XDISPLOC = chr(35)
  97. OLD_ENVIRON = chr(36)
  98. AUTHENTICATION = chr(37)
  99. ENCRYPT = chr(38)
  100. NEW_ENVIRON = chr(39)
  101. TN3270E = chr(40)
  102. XAUTH = chr(41)
  103. CHARSET = chr(42)
  104. RSP = chr(43)
  105. COM_PORT_OPTION = chr(44)
  106. SUPPRESS_LOCAL_ECHO = chr(45)
  107. TLS = chr(46)
  108. KERMIT = chr(47)
  109. SEND_URL = chr(48)
  110. FORWARD_X = chr(49)
  111. PRAGMA_LOGON = chr(138)
  112. SSPI_LOGON = chr(139)
  113. PRAGMA_HEARTBEAT = chr(140)
  114. EXOPL = chr(255)
  115. NOOPT = chr(0)
  116.  
  117. class Telnet:
  118.     """Telnet interface class.
  119.  
  120.     An instance of this class represents a connection to a telnet
  121.     server.  The instance is initially not connected; the open()
  122.     method must be used to establish a connection.  Alternatively, the
  123.     host name and optional port number can be passed to the
  124.     constructor, too.
  125.  
  126.     Don't try to reopen an already connected instance.
  127.  
  128.     This class has many read_*() methods.  Note that some of them
  129.     raise EOFError when the end of the connection is read, because
  130.     they can return an empty string for other reasons.  See the
  131.     individual doc strings.
  132.  
  133.     read_until(expected, [timeout])
  134.         Read until the expected string has been seen, or a timeout is
  135.         hit (default is no timeout); may block.
  136.  
  137.     read_all()
  138.         Read all data until EOF; may block.
  139.  
  140.     read_some()
  141.         Read at least one byte or EOF; may block.
  142.  
  143.     read_very_eager()
  144.         Read all data available already queued or on the socket,
  145.         without blocking.
  146.  
  147.     read_eager()
  148.         Read either data already queued or some data available on the
  149.         socket, without blocking.
  150.  
  151.     read_lazy()
  152.         Read all data in the raw queue (processing it first), without
  153.         doing any socket I/O.
  154.  
  155.     read_very_lazy()
  156.         Reads all data in the cooked queue, without doing any socket
  157.         I/O.
  158.  
  159.     read_sb_data()
  160.         Reads available data between SB ... SE sequence. Don't block.
  161.  
  162.     set_option_negotiation_callback(callback)
  163.         Each time a telnet option is read on the input flow, this callback
  164.         (if set) is called with the following parameters :
  165.         callback(telnet socket, command, option)
  166.             option will be chr(0) when there is no option.
  167.         No other action is done afterwards by telnetlib.
  168.  
  169.     """
  170.     
  171.     def __init__(self, host = None, port = 0):
  172.         '''Constructor.
  173.  
  174.         When called without arguments, create an unconnected instance.
  175.         With a hostname argument, it connects the instance; a port
  176.         number is optional.
  177.  
  178.         '''
  179.         self.debuglevel = DEBUGLEVEL
  180.         self.host = host
  181.         self.port = port
  182.         self.sock = None
  183.         self.rawq = ''
  184.         self.irawq = 0
  185.         self.cookedq = ''
  186.         self.eof = 0
  187.         self.iacseq = ''
  188.         self.sb = 0
  189.         self.sbdataq = ''
  190.         self.option_callback = None
  191.         if host is not None:
  192.             self.open(host, port)
  193.         
  194.  
  195.     
  196.     def open(self, host, port = 0):
  197.         """Connect to a host.
  198.  
  199.         The optional second argument is the port number, which
  200.         defaults to the standard telnet port (23).
  201.  
  202.         Don't try to reopen an already connected instance.
  203.  
  204.         """
  205.         self.eof = 0
  206.         if not port:
  207.             port = TELNET_PORT
  208.         
  209.         self.host = host
  210.         self.port = port
  211.         msg = 'getaddrinfo returns an empty list'
  212.         for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM):
  213.             (af, socktype, proto, canonname, sa) = res
  214.             
  215.             try:
  216.                 self.sock = socket.socket(af, socktype, proto)
  217.                 self.sock.connect(sa)
  218.             except socket.error:
  219.                 msg = None
  220.                 if self.sock:
  221.                     self.sock.close()
  222.                 
  223.                 self.sock = None
  224.                 continue
  225.  
  226.             break
  227.         
  228.         if not self.sock:
  229.             raise socket.error, msg
  230.         
  231.  
  232.     
  233.     def __del__(self):
  234.         '''Destructor -- close the connection.'''
  235.         self.close()
  236.  
  237.     
  238.     def msg(self, msg, *args):
  239.         '''Print a debug message, when the debug level is > 0.
  240.  
  241.         If extra arguments are present, they are substituted in the
  242.         message using the standard string formatting operator.
  243.  
  244.         '''
  245.         if self.debuglevel > 0:
  246.             print 'Telnet(%s,%d):' % (self.host, self.port),
  247.             if args:
  248.                 print msg % args
  249.             else:
  250.                 print msg
  251.         
  252.  
  253.     
  254.     def set_debuglevel(self, debuglevel):
  255.         '''Set the debug level.
  256.  
  257.         The higher it is, the more debug output you get (on sys.stdout).
  258.  
  259.         '''
  260.         self.debuglevel = debuglevel
  261.  
  262.     
  263.     def close(self):
  264.         '''Close the connection.'''
  265.         if self.sock:
  266.             self.sock.close()
  267.         
  268.         self.sock = 0
  269.         self.eof = 1
  270.         self.iacseq = ''
  271.         self.sb = 0
  272.  
  273.     
  274.     def get_socket(self):
  275.         '''Return the socket object used internally.'''
  276.         return self.sock
  277.  
  278.     
  279.     def fileno(self):
  280.         '''Return the fileno() of the socket object used internally.'''
  281.         return self.sock.fileno()
  282.  
  283.     
  284.     def write(self, buffer):
  285.         '''Write a string to the socket, doubling any IAC characters.
  286.  
  287.         Can block if the connection is blocked.  May raise
  288.         socket.error if the connection is closed.
  289.  
  290.         '''
  291.         if IAC in buffer:
  292.             buffer = buffer.replace(IAC, IAC + IAC)
  293.         
  294.         self.msg('send %r', buffer)
  295.         self.sock.sendall(buffer)
  296.  
  297.     
  298.     def read_until(self, match, timeout = None):
  299.         '''Read until a given string is encountered or until timeout.
  300.  
  301.         When no match is found, return whatever is available instead,
  302.         possibly the empty string.  Raise EOFError if the connection
  303.         is closed and no cooked data is available.
  304.  
  305.         '''
  306.         n = len(match)
  307.         self.process_rawq()
  308.         i = self.cookedq.find(match)
  309.         if i >= 0:
  310.             i = i + n
  311.             buf = self.cookedq[:i]
  312.             self.cookedq = self.cookedq[i:]
  313.             return buf
  314.         
  315.         s_reply = ([
  316.             self], [], [])
  317.         s_args = s_reply
  318.         if timeout is not None:
  319.             s_args = s_args + (timeout,)
  320.             time = time
  321.             import time
  322.             time_start = time()
  323.         
  324.         while not (self.eof) and select.select(*s_args) == s_reply:
  325.             i = max(0, len(self.cookedq) - n)
  326.             self.fill_rawq()
  327.             self.process_rawq()
  328.             i = self.cookedq.find(match, i)
  329.             if i >= 0:
  330.                 i = i + n
  331.                 buf = self.cookedq[:i]
  332.                 self.cookedq = self.cookedq[i:]
  333.                 return buf
  334.             
  335.             if timeout is not None:
  336.                 elapsed = time() - time_start
  337.                 if elapsed >= timeout:
  338.                     break
  339.                 
  340.                 s_args = s_reply + (timeout - elapsed,)
  341.                 continue
  342.         return self.read_very_lazy()
  343.  
  344.     
  345.     def read_all(self):
  346.         '''Read all data until EOF; block until connection closed.'''
  347.         self.process_rawq()
  348.         while not self.eof:
  349.             self.fill_rawq()
  350.             self.process_rawq()
  351.         buf = self.cookedq
  352.         self.cookedq = ''
  353.         return buf
  354.  
  355.     
  356.     def read_some(self):
  357.         """Read at least one byte of cooked data unless EOF is hit.
  358.  
  359.         Return '' if EOF is hit.  Block if no data is immediately
  360.         available.
  361.  
  362.         """
  363.         self.process_rawq()
  364.         while not (self.cookedq) and not (self.eof):
  365.             self.fill_rawq()
  366.             self.process_rawq()
  367.         buf = self.cookedq
  368.         self.cookedq = ''
  369.         return buf
  370.  
  371.     
  372.     def read_very_eager(self):
  373.         """Read everything that's possible without blocking in I/O (eager).
  374.  
  375.         Raise EOFError if connection closed and no cooked data
  376.         available.  Return '' if no cooked data available otherwise.
  377.         Don't block unless in the midst of an IAC sequence.
  378.  
  379.         """
  380.         self.process_rawq()
  381.         while not (self.eof) and self.sock_avail():
  382.             self.fill_rawq()
  383.             self.process_rawq()
  384.         return self.read_very_lazy()
  385.  
  386.     
  387.     def read_eager(self):
  388.         """Read readily available data.
  389.  
  390.         Raise EOFError if connection closed and no cooked data
  391.         available.  Return '' if no cooked data available otherwise.
  392.         Don't block unless in the midst of an IAC sequence.
  393.  
  394.         """
  395.         self.process_rawq()
  396.         while not (self.cookedq) and not (self.eof) and self.sock_avail():
  397.             self.fill_rawq()
  398.             self.process_rawq()
  399.         return self.read_very_lazy()
  400.  
  401.     
  402.     def read_lazy(self):
  403.         """Process and return data that's already in the queues (lazy).
  404.  
  405.         Raise EOFError if connection closed and no data available.
  406.         Return '' if no cooked data available otherwise.  Don't block
  407.         unless in the midst of an IAC sequence.
  408.  
  409.         """
  410.         self.process_rawq()
  411.         return self.read_very_lazy()
  412.  
  413.     
  414.     def read_very_lazy(self):
  415.         """Return any data available in the cooked queue (very lazy).
  416.  
  417.         Raise EOFError if connection closed and no data available.
  418.         Return '' if no cooked data available otherwise.  Don't block.
  419.  
  420.         """
  421.         buf = self.cookedq
  422.         self.cookedq = ''
  423.         if not buf and self.eof and not (self.rawq):
  424.             raise EOFError, 'telnet connection closed'
  425.         
  426.         return buf
  427.  
  428.     
  429.     def read_sb_data(self):
  430.         """Return any data available in the SB ... SE queue.
  431.  
  432.         Return '' if no SB ... SE available. Should only be called
  433.         after seeing a SB or SE command. When a new SB command is
  434.         found, old unread SB data will be discarded. Don't block.
  435.  
  436.         """
  437.         buf = self.sbdataq
  438.         self.sbdataq = ''
  439.         return buf
  440.  
  441.     
  442.     def set_option_negotiation_callback(self, callback):
  443.         '''Provide a callback function called after each receipt of a telnet option.'''
  444.         self.option_callback = callback
  445.  
  446.     
  447.     def process_rawq(self):
  448.         """Transfer from raw queue to cooked queue.
  449.  
  450.         Set self.eof when connection is closed.  Don't block unless in
  451.         the midst of an IAC sequence.
  452.  
  453.         """
  454.         buf = [
  455.             '',
  456.             '']
  457.         
  458.         try:
  459.             while self.rawq:
  460.                 c = self.rawq_getchar()
  461.                 if not self.iacseq:
  462.                     if c == theNULL:
  463.                         continue
  464.                     
  465.                     if c == '\x11':
  466.                         continue
  467.                     
  468.                     if c != IAC:
  469.                         buf[self.sb] = buf[self.sb] + c
  470.                         continue
  471.                     else:
  472.                         self.iacseq += c
  473.                 c != IAC
  474.                 if len(self.iacseq) == 1:
  475.                     if c in (DO, DONT, WILL, WONT):
  476.                         self.iacseq += c
  477.                         continue
  478.                     
  479.                     self.iacseq = ''
  480.                     if c == IAC:
  481.                         buf[self.sb] = buf[self.sb] + c
  482.                     elif c == SB:
  483.                         self.sb = 1
  484.                         self.sbdataq = ''
  485.                     elif c == SE:
  486.                         self.sb = 0
  487.                         self.sbdataq = self.sbdataq + buf[1]
  488.                         buf[1] = ''
  489.                     
  490.                     if self.option_callback:
  491.                         self.option_callback(self.sock, c, NOOPT)
  492.                     else:
  493.                         self.msg('IAC %d not recognized' % ord(c))
  494.                 self.option_callback
  495.                 if len(self.iacseq) == 2:
  496.                     cmd = self.iacseq[1]
  497.                     self.iacseq = ''
  498.                     opt = c
  499.                     if cmd in (DO, DONT):
  500.                         if not cmd == DO or 'DO':
  501.                             pass
  502.                         self.msg('IAC %s %d', 'DONT', ord(opt))
  503.                         if self.option_callback:
  504.                             self.option_callback(self.sock, cmd, opt)
  505.                         else:
  506.                             self.sock.sendall(IAC + WONT + opt)
  507.                     elif cmd in (WILL, WONT):
  508.                         if not cmd == WILL or 'WILL':
  509.                             pass
  510.                         self.msg('IAC %s %d', 'WONT', ord(opt))
  511.                         if self.option_callback:
  512.                             self.option_callback(self.sock, cmd, opt)
  513.                         else:
  514.                             self.sock.sendall(IAC + DONT + opt)
  515.                     
  516.                 cmd in (DO, DONT)
  517.         except EOFError:
  518.             self.iacseq = ''
  519.             self.sb = 0
  520.  
  521.         self.cookedq = self.cookedq + buf[0]
  522.         self.sbdataq = self.sbdataq + buf[1]
  523.  
  524.     
  525.     def rawq_getchar(self):
  526.         '''Get next char from raw queue.
  527.  
  528.         Block if no data is immediately available.  Raise EOFError
  529.         when connection is closed.
  530.  
  531.         '''
  532.         if not self.rawq:
  533.             self.fill_rawq()
  534.             if self.eof:
  535.                 raise EOFError
  536.             
  537.         
  538.         c = self.rawq[self.irawq]
  539.         self.irawq = self.irawq + 1
  540.         if self.irawq >= len(self.rawq):
  541.             self.rawq = ''
  542.             self.irawq = 0
  543.         
  544.         return c
  545.  
  546.     
  547.     def fill_rawq(self):
  548.         '''Fill raw queue from exactly one recv() system call.
  549.  
  550.         Block if no data is immediately available.  Set self.eof when
  551.         connection is closed.
  552.  
  553.         '''
  554.         if self.irawq >= len(self.rawq):
  555.             self.rawq = ''
  556.             self.irawq = 0
  557.         
  558.         buf = self.sock.recv(50)
  559.         self.msg('recv %r', buf)
  560.         self.eof = not buf
  561.         self.rawq = self.rawq + buf
  562.  
  563.     
  564.     def sock_avail(self):
  565.         '''Test whether data is available on the socket.'''
  566.         return select.select([
  567.             self], [], [], 0) == ([
  568.             self], [], [])
  569.  
  570.     
  571.     def interact(self):
  572.         '''Interaction function, emulates a very dumb telnet client.'''
  573.         if sys.platform == 'win32':
  574.             self.mt_interact()
  575.             return None
  576.         
  577.         while None:
  578.             (rfd, wfd, xfd) = select.select([
  579.                 self,
  580.                 sys.stdin], [], [])
  581.             if self in rfd:
  582.                 
  583.                 try:
  584.                     text = self.read_eager()
  585.                 except EOFError:
  586.                     print '*** Connection closed by remote host ***'
  587.                     break
  588.  
  589.                 if text:
  590.                     sys.stdout.write(text)
  591.                     sys.stdout.flush()
  592.                 
  593.             
  594.             if sys.stdin in rfd:
  595.                 line = sys.stdin.readline()
  596.                 if not line:
  597.                     break
  598.                 
  599.                 self.write(line)
  600.                 continue
  601.             continue
  602.             return None
  603.  
  604.     
  605.     def mt_interact(self):
  606.         '''Multithreaded version of interact().'''
  607.         import thread as thread
  608.         thread.start_new_thread(self.listener, ())
  609.         while None:
  610.             line = sys.stdin.readline()
  611.             if not line:
  612.                 break
  613.             
  614.             continue
  615.             return None
  616.  
  617.     
  618.     def listener(self):
  619.         '''Helper for mt_interact() -- this executes in the other thread.'''
  620.         while None:
  621.             
  622.             try:
  623.                 data = self.read_eager()
  624.             except EOFError:
  625.                 print '*** Connection closed by remote host ***'
  626.                 return None
  627.  
  628.             if data:
  629.                 sys.stdout.write(data)
  630.                 continue
  631.             sys.stdout.flush()
  632.             continue
  633.             return None
  634.  
  635.     
  636.     def expect(self, list, timeout = None):
  637.         """Read until one from a list of a regular expressions matches.
  638.  
  639.         The first argument is a list of regular expressions, either
  640.         compiled (re.RegexObject instances) or uncompiled (strings).
  641.         The optional second argument is a timeout, in seconds; default
  642.         is no timeout.
  643.  
  644.         Return a tuple of three items: the index in the list of the
  645.         first regular expression that matches; the match object
  646.         returned; and the text read up till and including the match.
  647.  
  648.         If EOF is read and no text was read, raise EOFError.
  649.         Otherwise, when nothing matches, return (-1, None, text) where
  650.         text is the text received so far (may be the empty string if a
  651.         timeout happened).
  652.  
  653.         If a regular expression ends with a greedy match (e.g. '.*')
  654.         or if more than one expression can match the same input, the
  655.         results are undeterministic, and may depend on the I/O timing.
  656.  
  657.         """
  658.         re = None
  659.         list = list[:]
  660.         indices = range(len(list))
  661.         for i in indices:
  662.             if not hasattr(list[i], 'search'):
  663.                 if not re:
  664.                     import re as re
  665.                 
  666.                 list[i] = re.compile(list[i])
  667.                 continue
  668.         
  669.         if timeout is not None:
  670.             time = time
  671.             import time
  672.             time_start = time()
  673.         
  674.         while None:
  675.             for i in indices:
  676.                 m = list[i].search(self.cookedq)
  677.                 if m:
  678.                     e = m.end()
  679.                     text = self.cookedq[:e]
  680.                     self.cookedq = self.cookedq[e:]
  681.                     return (i, m, text)
  682.                     continue
  683.             
  684.             if self.eof:
  685.                 break
  686.             
  687.             if timeout is not None:
  688.                 elapsed = time() - time_start
  689.                 if elapsed >= timeout:
  690.                     break
  691.                 
  692.                 s_args = ([
  693.                     self.fileno()], [], [], timeout - elapsed)
  694.                 (r, w, x) = select.select(*s_args)
  695.                 if not r:
  696.                     break
  697.                 
  698.             
  699.             self.fill_rawq()
  700.             continue
  701.             text = self.read_very_lazy()
  702.             if not text and self.eof:
  703.                 raise EOFError
  704.             
  705.         return (-1, None, text)
  706.  
  707.  
  708.  
  709. def test():
  710.     '''Test program for telnetlib.
  711.  
  712.     Usage: python telnetlib.py [-d] ... [host [port]]
  713.  
  714.     Default host is localhost; default port is 23.
  715.  
  716.     '''
  717.     debuglevel = 0
  718.     while sys.argv[1:] and sys.argv[1] == '-d':
  719.         debuglevel = debuglevel + 1
  720.         del sys.argv[1]
  721.     host = 'localhost'
  722.     if sys.argv[1:]:
  723.         host = sys.argv[1]
  724.     
  725.     port = 0
  726.     if sys.argv[2:]:
  727.         portstr = sys.argv[2]
  728.         
  729.         try:
  730.             port = int(portstr)
  731.         except ValueError:
  732.             port = socket.getservbyname(portstr, 'tcp')
  733.         except:
  734.             None<EXCEPTION MATCH>ValueError
  735.         
  736.  
  737.     None<EXCEPTION MATCH>ValueError
  738.     tn = Telnet()
  739.     tn.set_debuglevel(debuglevel)
  740.     tn.open(host, port)
  741.     tn.interact()
  742.     tn.close()
  743.  
  744. if __name__ == '__main__':
  745.     test()
  746.  
  747.